home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / lib / native / java.lang / java.lang.SecurityManager.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-12  |  945 b   |  43 lines

  1. /*
  2.  * java.lang.SecurityManager.c
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #include <native.h>
  14. #include "java.lang.SecurityManager.h"
  15.  
  16. HArray* /* HArrayOfClass */
  17. java_lang_SecurityManager_getClassContext(struct Hjava_lang_SecurityManager* this)
  18. {
  19.     abort();
  20.     return (0);
  21. }
  22.  
  23. struct Hjava_lang_ClassLoader*
  24. java_lang_SecurityManager_currentClassLoader(struct Hjava_lang_SecurityManager* this)
  25. {
  26.     abort();
  27.     return (0);
  28. }
  29.  
  30. long
  31. java_lang_SecurityManager_classDepth(struct Hjava_lang_SecurityManager* this, struct Hjava_lang_String* str)
  32. {
  33.     abort();
  34.     return (0);
  35. }
  36.  
  37. long
  38. java_lang_SecurityManager_classLoaderDepth(struct Hjava_lang_SecurityManager* this)
  39. {
  40.     abort();
  41.     return (0);
  42. }
  43.